libarchive 0.1.1

A safe Rust API for authoring and extracting archives with libarchive
docs.rs failed to build libarchive-0.1.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.

libarchive-rust

Build Status crates.io

A Rust crate for interacting with archives using libarchive

Documentation

Requirements

Version 3 of libarchive is required to use this library.

The required libraries and binaries can be installed by running:

Debian / Ubuntu

$ sudo apt-get install libarchive13

Mac OS X

$ brew install libarchive

Usage

Put this in your Cargo.toml:

[dependencies]
libarchive = "*"

And this in your crate root:

extern crate libarchive;